@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

html,body{
    height: 100%;
    width: 100%;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

}

.download{
    display: grid;
    place-items: center;  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.529), rgba(255, 255, 255, 0.282));
    border-radius: 20px;
    padding: 40px;
}

.img1{
    width: 20vw;
    animation-name: animate2;
    animation-duration: 6.5s;
    animation-iteration-count: infinite;
}

.img2{
    width: 20vw;
    animation-name: animate2;
    animation-duration: 6.5s;
    animation-iteration-count: infinite;
}

@keyframes animate2 {
    0%{
        transform: scale(0);
    }
    25%{
        transform: scale(1);
    }
    50%{
        transform: scale(1);
    }
    75%{
        transform: scale(1);
    }
    100%{
        transform: scale(0);
    }
}

.message{
    display: inline-block;
}

.message .txt {
    font-size: 3vw;
    border-right: 3px solid;
    padding-right: 4px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
        typing 5s linear infinite,
        cursor .4s step-end infinite alternate;
}

@keyframes typing {
    0% {
        width: 0;
    }
    50%, 100% {
        width: 100%;
    }
}

@keyframes cursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: black;
    }
}
